-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 1.63 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 1.63 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rabbit-ear",
"version": "0.9.4",
"description": "origami design library",
"exports": {
".": {
"import": "./module/index.js",
"require": "./rabbit-ear.js",
"types": "./types/index.d.ts"
},
"./*": {
"import": "./module/*",
"types": "./types/*"
}
},
"type": "module",
"types": "./types/index.d.ts",
"scripts": {
"build": "npm run clean && rollup -c && npm run types && npm run docs",
"clean": "node tests/clean.js",
"docs": "typedoc --options typedoc.config.json",
"test": "mkdir -p ./tests/tmp && vitest",
"types": "tsc"
},
"files": [
"./rabbit-ear.js",
"./rabbit-ear.module.js",
"./license",
"./package.json",
"./readme.md",
"./module",
"./types"
],
"license": "GPLv3",
"author": {
"name": "Maya Kraft",
"email": "[email protected]",
"url": "https://kraft.work"
},
"keywords": [
"origami",
"design",
"geometry",
"paper",
"fold",
"folding",
"foldability",
"generative",
"parametric",
"diagram",
"architecture",
"creative",
"art"
],
"repository": {
"type": "git",
"url": "git://github.com/rabbit-ear/rabbit-ear.git"
},
"homepage": "https://rabbitear.org",
"bugs": {
"url": "https://github.com/rabbit-ear/rabbit-ear/issues"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@xmldom/xmldom": "^0.8.10",
"earcut": "^2.2.4",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"rollup": "^3.28.1",
"rollup-plugin-cleanup": "^3.2.1",
"typedoc": "^0.25.13",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}