-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 910 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
37
38
39
40
41
{
"name": "pikchr-wasm",
"repository": "github:fabiospampinato/pikchr-wasm",
"description": "A fast and small port of Pikchr to WASM.",
"version": "2.0.1",
"type": "module",
"sideEffects": false,
"main": "dist/speed.js",
"types": "./dist/speed.d.ts",
"exports": {
".": "./dist/speed.js",
"./size": "./dist/size.js",
"./speed": "./dist/speed.js"
},
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"update": "bash pikchr/update.sh",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"pic",
"pikchr",
"diagram",
"diagrams",
"fast",
"small",
"svg"
],
"dependencies": {
"function-once": "^3.0.0"
},
"devDependencies": {
"fava": "^0.2.1",
"tsex": "^3.0.1",
"typescript": "^5.1.6"
}
}