-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.41 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
43
44
45
46
47
48
49
50
51
52
{
"name": "@apocrypha/core",
"version": "0.2.1",
"description": "an engine for building websites with vite and markdoc",
"license": "MIT",
"author": "Nate Kohari <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/nkohari/apocrypha.git"
},
"homepage": "https://github.com/nkohari/apocrypha#readme",
"bugs": {
"url": "https://github.com/nkohari/apocrypha/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"dependencies": {
"@markdoc/markdoc": "^0.4.0",
"chokidar": "^3.5.3",
"fast-glob": "^3.2.12",
"js-yaml": "^4.1.0",
"tosource": "^2.0.0-alpha.3",
"vite": "^5.2.11"
},
"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"
}
}