-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
57
58
59
60
61
62
63
64
{
"name": "@thomascsd/stools",
"version": "1.3.0",
"license": "MIT",
"repository": {
"url": "https://github.com/thomascsd/stools"
},
"main": "index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --target node",
"test": "tsdx test",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why",
"deploy:cpy": "cpy ./package.json ./dist/ & cpy ./README.md ./dist/",
"deploy": "deploy:cpy & cd dist & npm publish --access public --dry-run",
"docs": "typedoc --out docs src/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "thomascsd",
"module": "stools.esm.js",
"size-limit": [
{
"path": "dist/stools.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/stools.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.2",
"cpy-cli": "^4.2.0",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"size-limit": "^8.1.2",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.24",
"typescript": "^4.2.4"
},
"dependencies": {
"@thomascsd/stools-models": "^1.0.1",
"asyncairtable": "2.1.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
}
}