-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "projectrix",
"version": "0.1.6",
"description": "minimalist dom projection library in js/ts",
"sideEffects": false,
"main": "dist/cjs/projectrix.js",
"module": "dist/es/projectrix.js",
"umd:main": "dist/umd/projectrix.min.js",
"umd:name": "projectrix",
"unpkg": "dist/umd/projectrix.min.js",
"types": "dist/es/projectrix.d.ts",
"files": [
"dist/**"
],
"scripts": {
"clean": "rm -rf dist",
"build": "bash build.bsh",
"buildForTrials": "bash fastBuildForTrials.bsh",
"watch": "bash watch.bsh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anxpara/projectrix.git"
},
"keywords": [
"dom projection",
"projection",
"web animation",
"cross-dom animation",
"flip animation",
"flip",
"getBoundingClientRect",
"getActualClientRect"
],
"author": "anxpara [email protected]",
"license": "MIT",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/anxpara"
},
"bugs": {
"url": "https://github.com/anxpara/projectrix/issues"
},
"homepage": "https://github.com/anxpara/projectrix#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.7.4",
"rollup-plugin-dts": "^5.0.0",
"sass": "^1.54.0",
"terser": "^5.14.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"watch": "^0.13.0"
},
"dependencies": {
"actual-client-rect": "^0.2.2",
"gl-matrix": "^3.4.3"
}
}