-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "sqlpage_spreadsheet",
"version": "0.7.0",
"description": "sqlpage spreadsheet component",
"source": "./src/spreadsheet_component.html",
"browserslist": "> 3%, last 2 versions, not dead",
"scripts": {
"build": "parcel build --no-optimize --public-url /dist/ && ./add_csp_nonce.sh",
"build-optimized": "parcel build --public-url /dist/ && ./add_csp_nonce.sh",
"dev": "parcel watch --public-url /dist/ & (cd demo && ./sqlpage.bin)",
"lint": "biome check",
"typecheck": "tsc --noEmit",
"fix": "biome check --fix --unsafe",
"format": "biome format --write",
"test": "npm run lint && npm run typecheck && npm run build"
},
"author": "",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@biomejs/biome": "2.1.3",
"buffer": "^6.0.3",
"parcel": "^2.13.2",
"process": "^0.11.10",
"typescript": "^5.7.3"
},
"dependencies": {
"@univerjs/presets": "^0.10.2",
"zod": "^4.0"
},
"@parcel/bundler-default": {
"minBundleSize": 60000
},
"@parcel/resolver-default": {
"packageExports": true
}
}