-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "elm-debug-transformer",
"version": "1.2.1",
"description": "Transform Elm Debug.log output into nice log object with custom formatter",
"author": "Tomas Latal <[email protected]>",
"repository": "https://github.com/kraklin/elm-debug-transformer",
"keywords": [
"elm",
"debug",
"console",
"parser",
"formatter"
],
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"private": false,
"scripts": {
"pegjs": "pegjs --plugin ./node_modules/ts-pegjs/src/tspegjs -o src/elm-debug-parser.ts src/elm-debug.pegjs",
"test": "vitest run",
"build": "npm run pegjs && tsc && vite build",
"build:watch": "npm run pegjs && tsc && vite build --watch",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/lodash": "^4.14.134",
"@types/node": "^20.4.7",
"jsdom": "^22.1.0",
"lodash": "^4.17.15",
"pegjs": "^0.10.0",
"prettier": "^3.0.1",
"rollup-plugin-typescript-paths": "^1.4.0",
"ts-pegjs": "^0.2.5",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-plugin-peggy-loader": "^1.0.1",
"vitest": "^0.34.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
}