-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "ace-ts-editor",
"version": "0.3.2",
"description": "Ace editor exposing an interface for custom mode and completers",
"repository": {
"type": "git",
"url": "https://github.com/sluger/ace-ts-editor.git"
},
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": ">=12 <=16"
},
"files": [
"dist",
"src"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"test": "jest",
"prepare": "husky install",
"pretty": "prettier --write .",
"lint": "eslint . --ext .js,.ts"
},
"main": "dist/ace-ts-editor.js",
"unpkg": "dist/ace-ts-editor.min.js",
"module": "dist/ace-ts-editor.esm.js",
"types": "dist/types/index.d.ts",
"dependencies": {
"ace-builds": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-class-properties": "^7.17.2",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.2.1",
"prettier": "^2.6.2",
"rollup": "^2.7.0",
"sql-formatter": "^4.0.2",
"ts-jest": "^27.1.5",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,ts,md}": "prettier --write"
}
}