-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 KB
/
package.json
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
48
49
50
51
52
{
"name": "@rotorsoft/esml",
"version": "0.4.3",
"description": "Event Storming Modeling Language",
"author": "rotorsoft <[email protected]>",
"license": "MIT",
"repository": "git+https://github.com/rotorsoft/esml.git",
"private": false,
"main": "dist/index",
"types": "dist/index",
"scripts": {
"gen-schema": "rm ./docs/esml.json && npx ts-node ./src/cli/gen-schema.ts >> ./docs/esml.json",
"start": "rollup -c --watch --bundleConfigAsCjs rollup.config.js",
"test": "npx jest",
"build": "rm -rf dist && npm install && npx tsc && npm run gen-schema",
"release": "npx semantic-release"
},
"files": [
"dist",
"docs"
],
"bin": {
"create-eventually-app": "dist/cli/create-eventually-app.js",
"create-eventually-arts": "dist/cli/create-eventually-arts.js"
},
"dependencies": {
"dagre": "^0.8.5",
"json5": "^2.2.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.3",
"@types/dagre": "^0.7.48",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.2",
"jest": "^29.5.0",
"rollup": "^3.21.2",
"rollup-plugin-serve": "^2.0.2",
"semantic-release": "^21.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.4.0",
"typescript": "^5.0.4",
"zod-to-json-schema": "^3.21.4"
}
}