-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "@lingdong/psvg",
"version": "0.0.2",
"description": "Programmable Scalable Vector Graphics -- drawings that draw themselves",
"main": "dist/psvg.js",
"module": "dist/psvg.mjs",
"types": "dist/psvg.d.ts",
"unpkg": "dist/psvg.global.js",
"jsdelivr": "dist/psvg.global.js",
"bin": {
"psvg": "bin/psvg.js"
},
"files": [
"dist",
"bin",
"examples",
"psvg.ts"
],
"scripts": {
"build": "rimraf dist && tsup src/psvg.ts --format esm,cjs,iife --dts --global-name PSVG",
"prepublishOnly": "npm run build",
"release": "npx bumpp --all --commit --tag && npm publish --access public && git push",
"site": "node ./tools/make_site.js",
"examples": "node ./tools/compile_examples.js",
"format:check": "prettier --check './**/*.{js,ts}'",
"format:write": "prettier --write './**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LingDong-/psvg.git"
},
"bugs": {
"url": "https://github.com/LingDong-/psvg/issues"
},
"homepage": "https://github.com/LingDong-/psvg#readme",
"devDependencies": {
"@types/node": "^14.14.8",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"tsup": "^3.8.0",
"typescript": "^4.0.5"
}
}