-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 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
37
38
{
"name": "@raspberrypifoundation/python-friendly-error-messages",
"version": "0.1.4",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"browser": "./dist/index.browser.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"copydecks"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"build:browser": "esbuild src/index.browser.ts --bundle --format=esm --outfile=dist/index.browser.js --loader:.json=json",
"build:assets": "mkdir -p dist/copydecks && cp -R copydecks/* dist/copydecks/",
"build:all": "npm run build && npm run build:browser && npm run build:assets",
"test": "vitest run",
"dev:test": "vitest"
},
"devDependencies": {
"cpy-cli": "^6.0.0",
"esbuild": "^0.25.11",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vitest": "^2.1.3"
}
}