-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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": "react-textarea-list",
"description": "Unordered and ordered list Textarea components.",
"version": "1.0.6",
"keywords": [
"react",
"textarea",
"list",
"typescript",
"react-components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jrobsontull/react-textarea-list.git"
},
"license": "MIT",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "jrobsontull",
"bugs": {
"url": "https://github.com/jrobsontull/react-textarea-list/issues"
},
"homepage": "https://github.com/jrobsontull/react-textarea-list#readme",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c",
"start:dev": "rollup -c -w",
"start:example": "cd ./example && npm run dev",
"clean:bash": "rm -rf node_modules/",
"clean:powershell": "rd /s /q \"node_modules/\"",
"lint": "eslint \"src/*.tsx\" \"example/*.tsx\"",
"format": "prettier --write --config .prettierrc \"src/*.tsx\" \"example/*.tsx\""
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.30.0",
"highlight.js": "^11.5.1",
"parcel": "^2.6.0",
"prettier": "^2.7.1",
"react": "^16.8.0",
"react-ace": "^10.1.0",
"react-dom": "^16.8.0",
"rollup": "^2.75.6",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.3"
}
}