-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "@syntaxica/lib",
"version": "0.0.11",
"main": "dist/lib.web.mjs",
"types": "dist/lib/index.d.ts",
"files": [
"dist/"
],
"author": "Damian Wileński",
"license": "MIT",
"scripts": {
"build": "webpack --config=./webpack.config.js && tsc-alias -p tsconfig.json",
"test": "jest --no-cache --coverage"
},
"dependencies": {
"@syntaxica/antlr": "^4.12.0-2",
"commander": "^11.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.5.0",
"node": "^19.8.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"terser-webpack-plugin": "^5.3.7",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-shebang-plugin": "^1.1.8"
},
"bin": {
"stxa": "dist/cli.js"
},
"exports": {
".": {
"browser": {
"types": "dist/lib/index.d.ts",
"import": "dist/lib.web.mjs",
"require": "dist/lib.web.cjs",
"default": "dist/lib.web.mjs"
}
},
"./cli": {
"browser": {
"types": "dist/cli/index.d.ts"
}
}
}
}