forked from ntegan1/capnp-ts-op
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "capnp-ts",
"description": "Strongly typed Cap'n Proto implementation for the browser and Node.js using TypeScript",
"author": "jdiaz5513",
"contributors": ["Cameron Clough <[email protected]>"],
"homepage": "https://github.com/dash-software-ltd/capnp-ts#readme",
"bugs": {
"url": "https://github.com/dash-software-ltd/capnp-ts/issues"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dash-software-ltd/capnp-ts.git"
},
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/debug": "^4.1.5",
"@types/mkdirp": "^1.0.1",
"@types/node": "^20.10.1",
"@types/tap": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"benchmark": "^2.1.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"standard-version": "^9.3.1",
"tap": "^15.0.9",
"testcheck": "^1.0.0-rc.2",
"ts-node": "^9.1.1",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"capnp",
"rpc",
"typescript"
],
"license": "MIT",
"lint-staged": {
"linters": {
"*.ts": [
"prettier --write",
"eslint -p .",
"git add"
]
},
"ignore": [
"packages/capnpc-ts/bin/**/*.ts"
]
},
"prettier": {
"printWidth": 120
},
"scripts": {
"cereal": "capnpc -o ./packages/capnpc-ts/bin/capnpc-ts.js:./gen ./third_party/cereal/*capnp",
"benchmark": "make benchmark",
"build": "make build",
"build:watch": "npm run nodemon make build",
"coverage": "make coverage",
"coverage:watch": "npm run nodemon make coverage",
"lint": "make lint",
"nodemon": "nodemon -w ./packages/capnp-ts/src -w ./packages/capnpc-ts/src -w ./packages/capnp-ts/test -w ./packages/capnpc-ts/test -w ./packages/capnp-ts-test/test -w ./**/tsconfig.json -i './packages/capnp-ts/src/std' -i './packages/**/*.d.ts' -i './packages/**/*.capnp.ts' -e .ts -x ",
"prepare": "husky install",
"release": "make release",
"test": "make test",
"test:watch": "npm run nodemon make test",
"watch": "npm run test:watch"
},
"standard-version": {
"bumpFiles": [
"packages/capnp-ts/package.json",
"packages/capnpc-ts/package.json"
],
"packageFiles": [
"packages/capnp-ts/package.json",
"packages/capnpc-ts/package.json"
]
},
"workspaces": [
"packages/capnp-ts",
"packages/capnp-ts-test",
"packages/capnpc-ts",
"packages/js-examples"
],
"version": "0.0.1"
}