forked from lottie/lottie-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "@lottie-animation-community/lottie-types",
"version": "1.2.0",
"description": "TypeScript definitions for Lottie animation format",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"scripts": {
"clean": "rm -rf index.d.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format:prettier": "prettier --loglevel=warn --no-editorconfig --write .",
"build": "yarn clean && rollup -c",
"prepare": "husky install",
"changelog": "changeset add",
"changelog:check": "changeset status --since=main",
"changelog:version": "changeset version",
"changelog:publish": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lottie/lottie-types.git"
},
"keywords": [
"lottie",
"lottie-animation-community",
"lottie-schema",
"lottie-types"
],
"author": "Aidos Sabit <https://github.com/aidosmf/>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.24.3",
"@types/node": "^17.0.23",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "2.6.2",
"rollup": "^2.66.1",
"rollup-plugin-dts": "^4.1.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"access": "public"
}
}