-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
53
54
55
56
{
"name": "@spec.dev/tables",
"version": "0.0.20",
"description": "Spec Tables Client",
"keywords": [
"javascript",
"typescript",
"spec",
"shared",
"tables",
"table",
"client"
],
"homepage": "https://github.com/spec-dev/tables",
"bugs": "https://github.com/spec-dev/tables/issues",
"license": "MIT",
"author": "Spec",
"files": [
"dist",
"src"
],
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"types": "dist/main/index.d.ts",
"sideEffects": false,
"repository": "spec-dev/tables",
"scripts": {
"clean": "rimraf dist",
"scrap": "ts-node ./src/scrap.ts",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "genversion src/lib/version.ts --es6 && run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"types-generate": "dts-gen -m '@spec.dev/tables' -s"
},
"devDependencies": {
"@types/node": "^18.0.3",
"genversion": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.11",
"ts-node": "^10.8.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jsdelivr": "dist/umd/tables.js",
"unpkg": "dist/umd/tables.js"
}