-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.4 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
{
"name": "compostjs",
"version": "0.2.0",
"type": "module",
"description": "Composable data visualization library for JavaScript",
"author": "Tomas Petricek",
"license": "MIT",
"scripts": {
"start": "dotnet fable watch src/compost/compost.fsproj --run npx vite",
"build": "dotnet fable src/compost/compost.fsproj -o dist && rm -f dist/fable_modules/.gitignore",
"rebuild": "rm -rf dist && npm run build",
"standalone": "dotnet fable src/compost/compost.fsproj --run npx vite build && sh copy-latest.sh",
"test": "dotnet fable src/compost/compost.fsproj && npx vitest run",
"release:version": "np --yolo --no-release-draft --no-publish",
"release:standalone": "npm run standalone && git add . && git commit -m \"Update standalone release file in docs\"",
"release:publish": "npm run rebuild && npm publish",
"release": "npm run release:version && npm run release:standalone && npm run release:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compostjs/compost.git"
},
"keywords": [
"visualization",
"data science",
"charting"
],
"bugs": {
"url": "https://github.com/compostjs/compost/issues"
},
"homepage": "https://compostjs.github.io",
"main": "./dist/compost.js",
"dependencies": {
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"np": "^11.0.2",
"vite": "^6.0.0",
"vitest": "^4.0.18"
}
}