forked from securingsincity/react-ace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.96 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.96 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-ace",
"version": "11.0.0",
"description": "A react component for Ace Editor",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prettier": "prettier --write \"src/**\" \"example/*.js\" \"tests/**\"",
"clean": "rimraf lib dist",
"lint": "oxlint src/",
"build:lib": "tsc",
"build:umd": "vite build",
"build:umd:min": "vite build --mode production",
"example": "vite --config vite.config.example.ts",
"build:example": "vite build --config vite.config.example.ts",
"build": "npm run build:lib && npm run build:umd",
"check": "npm run lint",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"prepublishOnly": "npm run clean && npm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"prepare": "npm run build:lib"
},
"author": "James Hrisho",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@babel/register": "^7.23.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/chai": "^4.3.14",
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^22.5.5",
"@types/prop-types": "^15.7.12",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/sinon": "^17.0.3",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"husky": "^9.0.11",
"jsdom": "^25.0.0",
"minimist": ">=1.2.8",
"node-forge": "1.3.1",
"oxlint": "^1.6.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-test-renderer": "^19.0.0",
"rimraf": "6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^6.3.5",
"vite-plugin-commonjs": "^0.10.4",
"vitest": "^3.2.4"
},
"keywords": [
"ace",
"ace editor",
"react-component",
"react"
],
"dependencies": {
"ace-builds": "^1.36.3",
"diff-match-patch": "^1.0.5",
"fast-equals": "^5.3.3",
"prop-types": "^15.8.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/setup.js",
"node_modules"
],
"extension": [
".js",
".jsx",
".tsx",
".ts"
],
"reporter": [
"lcov",
"text-lcov",
"text",
"html"
]
},
"repository": {
"type": "git",
"url": "http://github.com/securingsincity/react-ace.git"
},
"prettier": {
"singleQuote": false,
"trailingComma": "none",
"arrowParens": "avoid"
}
}