-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 959 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "a-long-story",
"version": "1.0.0",
"description": "once upon a time, ...",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/sealdice/seal-swordworld",
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"build": "cross-env NODE_ENV=production node tools/build.js",
"build-dev": "cross-env NODE_ENV=dev node tools/build.js"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"cross-env": "^7.0.3",
"esbuild": "^0.21.4",
"fs-extra": "^11.2.0",
"source-map-support": "^0.5.21"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}