-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 844 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
33
34
35
36
{
"name": "graffiti",
"version": "1.0.0",
"type": "module",
"exports": {
".": "./lib/compat/index.js",
"./core": "./lib/core/index.js"
},
"scripts": {
"postinstall": "git clone https://github.com/fabioarnold/nanovg-zig ./deps/nanovg-zig && git clone https://github.com/cztomsik/zig-napigen ./deps/napigen && zig build"
},
"files": [
"src",
"build.zig",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cztomsik/graffiti.git"
},
"author": "Kamil Tomšík",
"license": "MIT",
"bugs": {
"url": "https://github.com/cztomsik/graffiti/issues"
},
"homepage": "https://github.com/cztomsik/graffiti#readme",
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 120,
"arrowParens": "avoid"
},
"volta": {
"node": "20.1.0"
}
}