-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.26 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
{
"name": "aefunctions",
"version": "2.0.3",
"description": "Speed up your After Effects expression writing with a library of useful functions",
"main": "dist/aefunctions.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"build": "rollup -c",
"watch": "rollup -cw",
"release": "npm run build && npm run docs && gh release create $npm_package_version $(node -pe \"require('./package.json').main\")",
"docs": "typedoc --json docs/aefunctions.json src/index.ts",
"log": "node -pe \"require('./package.json').main\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/motiondeveloper/aefunctions.git"
},
"author": "Tim Haywood",
"license": "MIT",
"bugs": {
"url": "https://github.com/motiondeveloper/aefunctions/issues"
},
"homepage": "https://github.com/motiondeveloper/aefunctions#readme",
"devDependencies": {
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"prettier": "^1.16.4",
"rollup": "^2.27.1",
"rollup-plugin-ae-jsx": "^2.0.0",
"tslib": "^2.0.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"expression-globals-typescript": "^3.2.5"
}
}