generated from board-bound/example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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
{
"name": "example",
"version": "IN-DEV",
"source": "src/index.ts",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "parcel watch --no-hmr",
"build": "parcel build",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prettier": "prettier --check src/**/*.ts",
"prettier:fix": "prettier --write src/**/*.ts"
},
"dependencies": {
"@board-bound/sdk": "^0.1.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/node": "^22.7.7",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"axios": "^1.7.7",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"parcel": "^2.12.0",
"pino": "^9.5.0",
"prettier": "^3.3.3",
"typescript": ">=3.0.0",
"typescript-eslint": "^8.10.0"
},
"engines": {
"node": ">=12"
},
"targets": {
"main": {
"includeNodeModules": true,
"sourceMap": {
"inline": true,
"inlineSources": true
},
"optimize": true
}
}
}