-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.75 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
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
{
"name": "@cucumber/monaco",
"version": "0.12.0",
"description": "Cucumber Monaco",
"type": "module",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"files": [
"dist/cjs",
"dist/esm"
],
"module": "dist/esm/src/index.js",
"jsnext:main": "dist/esm/src/index.js",
"exports": {
".": {
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
}
},
"scripts": {
"build:cjs": "tsc --build tsconfig.build-cjs.json && cp package.cjs.json dist/cjs/package.json",
"build:esm": "tsc --build tsconfig.build-esm.json",
"build": "npm run build:cjs && npm run build:esm",
"test": "mocha && npm run test:cjs",
"test:cjs": "npm run build:cjs && mocha --no-config dist/cjs/test",
"prepublishOnly": "npm run build",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test try",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test try",
"webpack": "npm run build:cjs && rm -f docs/*.js docs/*.ttf docs/*.txt docs/*.wasm && webpack && cp node_modules/@cucumber/language-service/dist/*.wasm docs"
},
"repository": {
"type": "git",
"url": "git://github.com/cucumber/monaco.git"
},
"keywords": [
"cucumber",
"lsp",
"language service"
],
"author": "Cucumber Limited <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/monaco/issues"
},
"homepage": "https://github.com/cucumber/monaco#readme",
"devDependencies": {
"@cucumber/cucumber-expressions": "^17.1.0",
"@types/mocha": "10.0.10",
"@types/node": "22.9.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"css-loader": "7.1.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.3",
"http-server": "^14.1.1",
"mocha": "10.8.2",
"monaco-editor": "0.52.0",
"monaco-editor-webpack-plugin": "7.1.0",
"node-gyp": "^10.0.1",
"prettier": "3.3.3",
"pretty-quick": "^4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"source-map-loader": "5.0.0",
"style-loader": "4.0.0",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@cucumber/language-service": "1.6.0",
"vscode-languageserver-types": "3.17.5"
},
"peerDependencies": {
"monaco-editor": "^0.52.0"
}
}