-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "photon-sphere",
"version": "2.0.2",
"description": "SVG tools to generate geometric shapes path based on circular arcs",
"type": "module",
"main": "./dist/photon-sphere.es.js",
"exports": {
"import": "./dist/photon-sphere.es.js",
"require": "./dist/photon-sphere.cjs"
},
"types": "./dist/photon-sphere.d.ts",
"umd": {
"name": "PhotonSphere",
"file": "./dist/photon-sphere.min.js"
},
"files": [
"dist"
],
"scripts": {
"clean:win": "node -e \"if (process.platform === 'win32') process.exit(1)\" || , if exist dist rmdir /Q /S dist",
"clean:nix": "node -e \"if (process.platform !== 'win32') process.exit(1) \" || rm -rf dist",
"clean": "npm run clean:win && npm run clean:nix",
"build:wasm": "wasm-pack build --release --target web ./wasm",
"build:lib": "npm run build:wasm && node ./scripts/build.cjs",
"build:web": "node ./scripts/build-web.cjs",
"test": "node ./test/test.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarrieMitsu/photon-sphere.git"
},
"keywords": [
"SVG",
"javascript",
"tools",
"morphing",
"DOM"
],
"author": "MarrieMitsu <isnainromadoni@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarrieMitsu/photon-sphere/issues"
},
"homepage": "https://github.com/MarrieMitsu/photon-sphere#readme",
"devDependencies": {
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-wasm": "^6.2.2",
"jsdom": "^19.0.0",
"rollup": "^4.13.2"
}
}