-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "stl-api",
"private": true,
"version": "0.0.3",
"description": "stainless api monorepo",
"author": "dev@stainlessapi.com",
"packageManager": "pnpm@9.9.0",
"repository": {
"type": "git",
"url": "https://github.com/stainless-api/stl-api.git"
},
"homepage": "https://github.com/stainless-api/stl-api",
"bugs": {
"url": "https://github.com/stainless-api/stl-api/issues"
},
"keywords": [
"stainless",
"api"
],
"config": {
"ghooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,cts,tsx,json,css,md}": [
"prettier --write"
]
},
"license": "ISC",
"scripts": {
"test": "pnpm -r test",
"test:ci": "start-server-and-test start-test-server http://0.0.0.0:3005 test",
"start-test-server": "cd demo && pnpm start -p 3005",
"build": "pnpm -r run prebuild && tsc -b packages/*/tsconfig*.json && (cd demo && pnpm build)",
"build:watch": "pnpm -r run prebuild && tsc -b --watch packages/*/tsconfig*.json demo/tsconfig.json",
"docs:start": "cd docs && pnpm start",
"docs:build": "cd docs && pnpm build",
"docs:deploy": "pnpm docs:build && netlify deploy --dir docs/build --prod",
"watch": "pnpm run build:watch",
"clean": "pnpm -r run clean && rm -rf packages/*/{package,*.tgz}",
"format": "prettier --write .",
"prettier:check": "prettier --list-different .",
"postinstall": "./node_modules/ghooks/bin/install"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@types/node-fetch": "^2.6.9",
"execa": "^7.2.0",
"ghooks": "^2.0.4",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"start-server-and-test": "^2.0.3",
"typescript": "^5.3.2"
}
}