-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "joyid-sdk-js",
"version": "1.0.0",
"private": true,
"description": "Monorepo for JoyID JavaScript SDK",
"main": "index.js",
"scripts": {
"postinstall": "pnpm run build",
"lint": "eslint .",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm -r generate:version && git add --all",
"changeset:release": "changeset publish",
"format": "eslint --fix .",
"build": "pnpm run --r --filter \"./packages/**\" build",
"test": "pnpm run --r --filter \"./packages/**\" test"
},
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=18"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"bracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"type": "module",
"simple-git-hooks": {
"pre-commit": "pnpm run format"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"eslint": "9.4.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-unjs": "0.3.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.3.1",
"simple-git-hooks": "^2.11.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "5.2.12",
"vitest": "1.6.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.20.2"
}
}