-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2 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
{
"name": "builtin.language-features-typescript-monorepo",
"version": "0.0.0-dev",
"description": "",
"type": "module",
"scripts": {
"postinstall": "lerna bootstrap --ci && node scripts/postinstall.js",
"test": "lerna run test",
"dev": "node ./node_modules/@lvce-editor/server/bin/server.js --only-extension=packages/extension --test-path=packages/e2e",
"type-check": "tsc -b",
"e2e": "cd packages/e2e && npm run e2e",
"e2e:headless": "cd packages/e2e && npm run e2e:headless"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"typescript": "^5.6.3"
},
"devDependencies": {
"@lerna/legacy-package-management": "^8.1.8",
"@lvce-editor/server": "^0.37.8",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5"
},
"xo": {
"rules": {
"unicorn/filename-case": "off",
"indent": "off",
"semi": "off",
"no-unused-vars": "off",
"unicorn/numeric-separators-style": "off",
"no-extra-semi": "off",
"arrow-body-style": "off",
"padded-blocks": "off",
"capitalized-comments": "off",
"padding-line-between-statements": "off",
"arrow-parens": "off",
"no-warning-comments": "off",
"array-bracket-spacing": "off",
"comma-spacing": "off",
"unicorn/no-array-callback-reference": "off",
"comma-dangle": "off",
"operator-linebreak": "off",
"no-case-declarations": "off",
"no-undef": "off",
"object-curly-spacing": "off",
"object-shorthand": "off",
"complexity": "off",
"no-labels": "off",
"no-multi-assign": "off",
"max-params": "off",
"no-bitwise": "off",
"unicorn/prefer-math-trunc": "off",
"no-await-in-loop": "off",
"unicorn/prefer-add-event-listener": "off",
"no-unused-expressions": "off"
},
"ignores": [
"distmin"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}