-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "paintbricks",
"version": "1.0.5",
"description": "An extendable drawing system built for the web.",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"engines": {
"node": " >=14.13.1 || >=16.0.0"
},
"type": "module",
"scripts": {
"build": "npm run build-src && npm run build-example && tsc --emitDeclarationOnly",
"build-src": "vite build",
"build-example": "vite build --config example/vite.config.js",
"prepublish": "npm run build",
"typecheck": "tsc --skipLibCheck --noEmit",
"prettier": "prettier --check \"{src,example/src}/**/*.{ts,json}\"",
"prettier:fix": "prettier --write \"{src,example/src}/**/*.{ts,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshaddix/paintbricks.git"
},
"author": "Tyler Shaddix <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshaddix/paintbricks/issues"
},
"homepage": "https://github.com/tshaddix/paintbricks#readme",
"dependencies": {
"color-alpha": "^1.1.3"
},
"devDependencies": {
"esbuild": "^0.19.5",
"prettier": "^3.1.0",
"typescript": "^5.2.2",
"vite": "^5.0.0"
}
}