-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 902 Bytes
/
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
{
"name": "doki-build-source",
"version": "84.2.7",
"description": "Building blocks for constructing the Doki Themes",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"watch:esm": "tsc -p tsconfig.json --watch",
"watch:cjs": "tsc -p tsconfig-cjs.json --watch",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doki-theme/doki-build-source.git"
},
"author": "Unthottled",
"license": "MIT",
"bugs": {
"url": "https://github.com/doki-theme/doki-build-source/issues"
},
"homepage": "https://github.com/doki-theme/doki-build-source#readme",
"devDependencies": {
"@types/node": "^14.14.34",
"typescript": "^4.2.3"
}
}