-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "@overmindtech/sdp-js",
"version": "13.0.0",
"description": "Javascript and Typescript libraries for the State Description Protocol",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"prepack": "pnpm build",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prettier:check": "prettier ./src --check",
"prettier:fix": "prettier ./src --write",
"typecheck": "tsc -p ./tsconfig.json --noEmit",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "vitest run --coverage",
"qa": "pnpm typecheck && pnpm lint:fix && pnpm prettier:fix && npm test"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"changelogen": "^0.5.7",
"eslint": "^9.17.0",
"eslint-config-unjs": "^0.4.2",
"jest-websocket-mock": "^2.5.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}