compostjs 0.0.5 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +11 -0
- package/README.md +38 -37
- package/dist/compost.js +168 -260
- package/dist/core.js +1530 -1688
- package/dist/helpers.js +31 -0
- package/dist/html.js +252 -229
- package/index.html +49 -0
- package/package.json +36 -41
- package/dist/bundle.js +0 -829
- package/dist/main.js +0 -217
package/package.json
CHANGED
|
@@ -1,41 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "compostjs",
|
|
3
|
-
"version": "0.0.
|
|
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
|
-
"webpack": "^4.41.6",
|
|
38
|
-
"webpack-cli": "^3.3.11",
|
|
39
|
-
"webpack-dev-server": "^3.10.3"
|
|
40
|
-
}
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "compostjs",
|
|
3
|
+
"version": "0.0.8",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Composable data visualization library for JavaScript",
|
|
6
|
+
"author": "Tomas Petricek",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"start": "dotnet fable watch src/compost/compost.fsproj --run npx vite",
|
|
10
|
+
"build": "dotnet fable src/compost/compost.fsproj -o dist && cp dist/compost.fs.js dist/compost.js",
|
|
11
|
+
"standalone": "dotnet fable src/compost/compost.fsproj --run npx vite build && cp docs/releases/compost-$npm_package_version.js docs/releases/compost-latest.js",
|
|
12
|
+
"prepublish": "npm run standalone && git add . && git commit -m \"Update standalone release file in docs\" && npm run build",
|
|
13
|
+
"release": "np --yolo --no-release-draft"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/compostjs/compost.git"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"visualization",
|
|
21
|
+
"data science",
|
|
22
|
+
"charting"
|
|
23
|
+
],
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/compostjs/compost/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://compostjs.github.io",
|
|
28
|
+
"main": "./dist/compost.js",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"virtual-dom": "^2.1.1"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"np": "^11.0.2",
|
|
34
|
+
"vite": "^6.0.0"
|
|
35
|
+
}
|
|
36
|
+
}
|