-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 955 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
{
"name": "@pictogrammers/bitmask-to-svg",
"version": "0.9.1",
"description": "1 Bit Bitmask to SVG",
"type": "module",
"main": "lib/bitmaskToPath.js",
"scripts": {
"build": "npm run build:lib && npm run build:demo",
"build:lib": "tsc --project tsconfig.json",
"build:demo": "tsc --project tsconfig.demo.json && copyfiles -f src/favicon.svg src/index.html demo",
"start": "npm run build:demo && http-server demo -p 3000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pictogrammers/1-bit-image-to-svg.git"
},
"author": "Pictogrammers",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pictogrammers/1-bit-image-to-svg/issues"
},
"homepage": "https://github.com/Pictogrammers/1-bit-image-to-svg#readme",
"devDependencies": {
"copyfiles": "^2.4.1",
"http-server": "^14.1.1",
"typescript": "^4.9.4"
}
}