-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "@kraftwerkdesign/vektor",
"version": "0.0.2",
"description": "An animtion framework",
"keywords": [
"animation",
"framework",
"kraftwerk"
],
"homepage": "https://github.com/Kraftwerk-Design/vektor",
"bugs": {
"url": "https://github.com/Kraftwerk-Design/vektor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kraftwerk-Design/vektor.git"
},
"license": "ISC",
"contributors": [
{
"name": "Curtis Henson",
"email": "curtis@kraftwerkdesign.com",
"url": "https://kraftwerkdesign.com"
}
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"ci": "npm run build && npm run check-format && npm run check-exports",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@changesets/cli": "^2.28.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}