-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 855 Bytes
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
{
"name": "scripts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --format=iife --outfile=surface_tag.js --target=es2020 && pnpm copyTagToEmbed",
"copyTagToEmbed": "cp surface_tag.js surface_embed_v1.js",
"dev": "esbuild src/index.ts --bundle --format=iife --outfile=surface_tag.js --target=es2020 --watch --sourcemap",
"test:unit": "node --test test/unit/*.test.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"postbuild": "pnpm copyTagToEmbed"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"esbuild": "^0.28.0",
"jsdom": "^29.1.1",
"typescript": "^6.0.2",
"vitest": "^4.1.10"
}
}