forked from nkohari/apocrypha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@nkohari/apocrypha",
"version": "0.1.1",
"description": "an engine for building websites with markdoc",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"dependencies": {
"@markdoc/markdoc": "^0.2.2",
"chokidar": "^3.5.3",
"fast-glob": "^3.2.12",
"js-yaml": "^4.1.0",
"tosource": "^2.0.0-alpha.3",
"vite": "4.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"command-line-args": "^5.2.1",
"esbuild": "^0.16.17",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always"
},
"scripts": {
"build": "npm run build:library && npm run build:types",
"build:library": "node build.js",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"dev": "node build.js --watch",
"prepack": "npm run build",
"test": "npx jest",
"zen": "npx jest --watch"
}
}