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/package.json CHANGED
@@ -1,41 +1,36 @@
1
- {
2
- "name": "compostjs",
3
- "version": "0.0.5",
4
- "description": "Composable data visualization library for JavaScript",
5
- "author": "Tomas Petricek",
6
- "license": "MIT",
7
- "scripts": {
8
- "standalone": "webpack --config src/webpack.pub.js && webpack --config src/webpack.latest.js",
9
- "build": "fable-splitter src/compost/compost.fsproj -o dist",
10
- "start": "webpack-dev-server --config src/webpack.dev.js",
11
- "prepublish": "npm run standalone && git add . && git commit -m \"Update standalone release file in docs\" && npm run build",
12
- "release": "np --yolo --no-release-draft"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/compostjs/compost.git"
17
- },
18
- "keywords": [
19
- "visualization",
20
- "data science",
21
- "charting"
22
- ],
23
- "bugs": {
24
- "url": "https://github.com/compostjs/compost/issues"
25
- },
26
- "homepage": "https://compostjs.github.io",
27
- "main": "./dist/compost.js",
28
- "dependencies": {
29
- "virtual-dom": "^2.1.1"
30
- },
31
- "devDependencies": {
32
- "@babel/core": "^7.8.4",
33
- "fable-compiler": "^2.4.15",
34
- "fable-loader": "^2.1.8",
35
- "fable-splitter": "^2.2.0",
36
- "np": "^6.2.4",
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
+ }