-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "ebox",
"version": "2.0.0",
"description": "Create rectangles within After Effects expressions ",
"main": "dist/eBox.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"build": "rollup -c",
"watch": "rollup -cw",
"release": "npm run build && gh release create $npm_package_version $npm_package_main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motiondeveloper/ebox.git"
},
"author": "Tim Haywood",
"license": "MIT",
"bugs": {
"url": "https://github.com/motiondeveloper/ebox/issues"
},
"homepage": "https://github.com/motiondeveloper/ebox#readme",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"prettier": "^2.7.1",
"rollup": "^2.28.1",
"rollup-plugin-ae-jsx": "^2.0.0",
"tslib": "^2.0.1",
"typescript": "^4.9.3"
},
"dependencies": {
"expression-globals-typescript": "^3.2.6"
}
}