-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 986 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
{
"name": "libavoid-js",
"version": "0.4.2",
"description": "JS port of libavoid library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"node": "./dist/index-node.mjs",
"default": "./dist/index.js",
"types": "./dist/libavoid.d.ts"
}
},
"files": [
"dist/",
"typings/"
],
"scripts": {
"build": "node build.js",
"api-docs": "jsdoc -c jsdoc.conf.js -d ./api_docs_build/ build/generated_debug/glue.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aksem/libavoid-js.git"
},
"author": "Vladyslav Hnatiuk",
"license": "LGPL-2.1-or-later",
"bugs": {
"url": "https://github.com/Aksem/libavoid-js/issues"
},
"homepage": "https://github.com/Aksem/libavoid-js",
"devDependencies": {
"docdash": "^1.2.0",
"esbuild": "^0.17.15",
"esbuild-plugin-copy": "^2.1.1",
"jsdoc": "^3.6.6"
}
}