-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·110 lines (110 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·110 lines (110 loc) · 3.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@making-sense/antlr-editor",
"version": "2.9.2",
"description": "ANTLR Typescript editor",
"repository": {
"type": "git",
"url": "git://github.com/Making-Sense-Info/ANTLR-Editor.git"
},
"scripts": {
"prepare": "husky install",
"build": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true}); fs.rmSync('tsconfig.tsbuildinfo',{force:true});\" && tsc",
"verify:dist": "node scripts/verify-dist.mjs",
"prepublishOnly": "npm run build && npm run verify:dist",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"lint:check": "eslint .",
"lint": "npm run lint:check -- --fix",
"format": "prettier \"**/*.{ts,tsx,json,md}\" --write",
"format:check": "prettier \"**/*.{ts,tsx,json,md}\" --list-different",
"storybook": "storybook dev -p 9999 --no-open --initial-path=/docs/editorhandle--docs",
"build-storybook": "storybook build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/NicoLaval",
"license": "MIT",
"files": [
"src/",
"!src/test/",
"dist/",
"!dist/test/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [
"ANTLR",
"Monaco"
],
"homepage": "https://github.com/Making-Sense-Info/ANTLR-Editor",
"devDependencies": {
"@making-sense/vtl-2-0-antlr-tools-ts": "^2.0.1",
"@making-sense/vtl-2-0-monaco-tools-ts": "^0.1.0",
"@making-sense/vtl-2-1-antlr-tools-ts": "^1.0.5",
"@making-sense/vtl-2-1-monaco-tools-ts": "^1.0.1",
"@storybook/addon-docs": "10.4.0",
"@storybook/addon-links": "10.4.0",
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
"@storybook/react": "10.4.0",
"@storybook/react-webpack5": "10.4.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/debug": "^4.1.13",
"@types/node": "^22.7.4",
"@types/path-browserify": "^1.0.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "10.4.0",
"husky": "^9.1.7",
"jsdom": "^27.1.0",
"lint-staged": "^15.2.10",
"path-browserify": "^1.0.1",
"prettier": "^3.8.3",
"prop-types": "15.8.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"storybook": "10.4.0",
"storybook-dark-mode": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"webpack": "5.106.2"
},
"dependencies": {
"@making-sense/antlr4ng": "^3.0.4",
"@monaco-editor/react": "^4.7.0",
"debug": "^4.4.3",
"monaco-editor": "^0.52.2"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
}
}