-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "@assistantapps/swat-chart",
"version": "0.0.8",
"description": "Swat chart made for use in AssistantApps and other projects",
"license": "MIT",
"author": "Kurt Lourens",
"scripts": {
"setup": "git config core.hooksPath .githooks/",
"report": "bun ./src/data/report.ts",
"prebuild": "bun ./src/data/preBuild.ts",
"build": "tsup",
"quick-update": "npx npm-check-updates -u && npm i --force && bun install && npm run report",
"test": "vitest --ui --project unit"
},
"devDependencies": {
"@types/node": "^24.7.0",
"tsup": "^8.5.0",
"tsup-preset-solid": "^2.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AssistantApps/Swat-Chart.git"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/swat.export.js",
"module": "./dist/swat.export.js",
"types": "./dist/swat.export.d.ts",
"browser": {},
"exports": {
".": {
"import": "./dist/swat.export.js",
"types": "./dist/swat.export.d.ts"
}
},
"typesVersions": {},
"keywords": [
"assistantapps",
"swat",
"swat-chart",
"chart"
]
}