-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.2 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
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
79
80
81
82
83
84
{
"name": "@paplico/core-new",
"version": "0.0.0",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
},
"./ext-brush": {
"import": "./dist/ext-brush.mjs",
"types": "./dist/index-ext-brush.d.ts",
"require": "./dist/ext-brush.js"
},
"./ext-ink": {
"import": "./dist/ext-ink.mjs",
"types": "./dist/index-ext-ink.d.ts",
"require": "./dist/ext-ink.js"
},
"./math-utils": {
"import": "./dist/math-utils.mjs",
"types": "./dist/index-math-utils.d.ts",
"require": "./dist/math-utils.js"
},
"./expr-webgl": {
"import": "./dist/expr-webgl.mjs",
"types": "./dist/index-expr-webgl.d.ts",
"require": "./dist/expr-webgl.js"
},
"./extras": {
"import": "./dist/extras.mjs",
"types": "./dist/index-extras.d.ts",
"require": "./dist/extras.js"
}
},
"scripts": {
"test": "vitest",
"dev": "vite build --watch",
"prepublishOnly": "yarn build",
"build": "vite build"
},
"devDependencies": {
"@paplico/shared-lib": "workspace:^",
"@rollup/plugin-typescript": "^9.0.2",
"@types/opentype.js": "^1.3.7",
"@types/three": "^0.146.0",
"@types/web": "^0.0.119",
"point-at-length": "^1.1.0",
"random-seedable": "^1.0.8",
"rollup-plugin-node-externals": "^6.1.2",
"typescript": "^5.0.4",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.3"
},
"dependencies": {
"@luncheon/simplify-svg-path": "^0.2.0",
"@thednp/dommatrix": "^2.0.6",
"abs-svg-path": "^0.1.1",
"crypto-js": "^4.1.1",
"fast-random": "^2.0.4",
"fast-shallow-equal": "^1.0.0",
"is-ios": "^2.1.0",
"jsondiffpatch": "^0.5.0",
"math.gl": "^3.6.3",
"matrixgl": "^2.0.0",
"mitt": "^3.0.1",
"opentype.js": "^1.3.4",
"polished": "^4.2.2",
"svg-path-bounding-box": "^1.0.4",
"three": "^0.146.0",
"ulid": "^2.3.0",
"zod": "^3.19.1"
},
"peerDependencies": {
"ag-psd": "^17.0.6",
"react": "*"
}
}