-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "@valtown/vtata",
"version": "0.0.0",
"license": "MIT",
"homepage": "https://github.com/val-town/vtata",
"repository": {
"url": "https://github.com/val-town/vtata.git",
"type": "git"
},
"main": "dist/index.js",
"type": "module",
"types": "src/userFacingTypes.d.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --format=esm --platform=node --target=es2015 && cpy src/userFacingTypes.d.ts dist/ --rename=index.d.ts && cpy src/ ../sandbox/src/vendor/ata",
"dev": "vite",
"test": "vitest",
"bootstrap": "pnpm build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/lang-javascript": "^6.2.2",
"@typescript/vfs": "^1.6.0",
"@valtown/codemirror-ts": "3.0.0-9",
"@vitest/coverage-v8": "2.1.8",
"codemirror": "^6.0.1",
"comlink": "^4.4.2",
"esbuild": "^0.17.8",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"typescript": ">=4.4.4"
}
}