-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
32 lines (32 loc) · 887 Bytes
/
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
{
"type":"module",
"sideEffects": false,
"name": "@jscadui/params",
"version": "0.1.0",
"description": "reference JSCAD UI params form implementation using vanilla js ",
"main": "index.js",
"unpkg": "cjs/index.js",
"module": "./index.js",
"files": [
"index.js",
"src",
"esm",
"cjs"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "esbuild index.js --outdir=esm --bundle --sourcemap --minify --loader:.js=jsx --format=esm",
"build-cjs": "esbuild index.js --outdir=cjs --bundle --sourcemap --minify --loader:.js=jsx --format=cjs",
"prepublishOnly": "npm run build && npm run build-cjs"
},
"devDependencies": {
"esbuild": "^0.16.7",
"@types/node": "18.11.9",
"@trivago/prettier-plugin-sort-imports": "~3.3.0",
"vitest": "0.24.5"
},
"dependencies": {
},
"license": "MIT"
}