-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.08 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
{
"name": "scribing-react",
"version": "1.14.1",
"description": "React components for collaborative rich text editing",
"main": "./dist/scribing-react.js",
"typings": "./dist/scribing-react.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf temp lib && npm run lint && tsc",
"build": "rollup -c",
"postbuild": "npm test && api-extractor run --local && api-documenter markdown --input temp --output docs",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "echo Testing not available right now :-(",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwikstrom/scribing-react.git"
},
"author": "Mårten Wikström",
"license": "ISC",
"bugs": {
"url": "https://github.com/mwikstrom/scribing-react/issues"
},
"homepage": "https://github.com/mwikstrom/scribing-react#readme",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@formatjs/icu-messageformat-parser": "^2.1.0",
"@mdi/js": "^6.6.96",
"@mdi/react": "^1.6.0",
"@microsoft/api-documenter": "^7.17.11",
"@microsoft/api-extractor": "^7.23.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@types/color": "^3.0.3",
"@types/jest": "^29.4.4",
"@types/react": "^17.0.44",
"@types/react-test-renderer": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.5",
"clsx": "^1.1.1",
"color": "^3.2.1",
"eslint": "^7.31.0",
"intl-messageformat": "^9.13.0",
"jest": "^29.5.0",
"nanoid": "^3.3.4",
"paratype": "^1.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-jss": "^10.9.0",
"react-test-renderer": "^16.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"scribing": "1.8.0",
"scribing-server": "^1.0.0",
"scripthost": "^1.0.0",
"scripthost-browser": "^1.0.2",
"scripthost-core": "^1.0.0",
"scripthost-react": "^1.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"xml-js": "^1.6.11"
},
"peerDependencies": {
"@mdi/js": "6.x",
"@mdi/react": "1.x",
"clsx": "1.x",
"color": "3.x",
"intl-messageformat": "9.x",
"nanoid": "3.x",
"paratype": "1.x",
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x",
"react-jss": "10.x",
"scribing": "^1.8.0",
"scripthost": "1.x",
"scripthost-browser": "1.x",
"scripthost-core": "1.x",
"scripthost-react": "1.x"
}
}