forked from draft-js-plugins/draft-js-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.38 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
114
115
116
117
118
119
120
121
122
123
124
{
"name": "draft-js-plugins",
"description": "A Plugin Architecture on top of Draft.JS",
"version": "0.0.0",
"engines": {
"node": ">=24"
},
"author": {
"name": "Nik Graf",
"email": "nik@nikgraf.com",
"url": "http://www.nikgraf.com"
},
"dependencies": {
"draft-js": "^0.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"resolutions": {
"@types/react": "^18.3.27",
"core-js": "^3.50.0",
"flat-cache": "5.0.0",
"test-exclude": "8.0.0"
},
"overrides": {
"@types/react": "^18.3.27",
"core-js": "^3.50.0",
"flat-cache": "5.0.0",
"test-exclude": "8.0.0"
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/plugin-transform-class-properties": "7.28.6",
"@babel/preset-env": "7.28.3",
"@babel/preset-flow": "7.27.1",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.27.1",
"@biomejs/biome": "^2.5.10",
"@changesets/cli": "^2.29.5",
"@linaria/core": "8.2.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@storybook/react-webpack5": "10.6.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "30.0.0",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@wyw-in-js/rollup": "2.5.1",
"@wyw-in-js/shared": "2.5.0",
"@wyw-in-js/transform": "2.5.1",
"@wyw-in-js/webpack-loader": "2.5.1",
"babel-jest": "30.5.1",
"babel-loader": "^8.2.5",
"babel-plugin-transform-rename-import": "^2.3.0",
"css-loader": "6.8.1",
"fast-glob": "^3.3.3",
"husky": "^8.0.3",
"immutable": "^5.1.5",
"jest": "30.5.1",
"jest-environment-jsdom": "30.5.1",
"lint-staged": "^13.2.2",
"multer": "^2.3.0",
"path-browserify": "^1.0.1",
"prettier": "^3.6.2",
"prismjs": "^1.30.0",
"rimraf": "^6.1.3",
"rollup": "^2.79.2",
"rollup-plugin-css-only": "4.5.5",
"storybook": "10.6.0",
"style-loader": "3.3.4",
"ts-jest": "29.4.12",
"ts-node": "10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.102.1"
},
"keywords": [
"components",
"draft",
"editor",
"react",
"react-component",
"ux",
"widget",
"wysiwyg"
],
"license": "MIT",
"lint-staged": {
"*.(js|ts|tsx)": [
"prettier --write",
"biome lint --write"
]
},
"main": "lib/index.js",
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Vectorworks/draft-js-plugins.git"
},
"scripts": {
"alex": "alex README.md",
"build-storybook": "storybook build",
"lint": "yarn lint:biome && yarn tsc",
"lint:biome": "biome lint ./",
"lint:biome:fix": "biome lint --write ./",
"storybook": "storybook dev -p 6006",
"test": "yarn build:dts && yarn test:jest",
"test:jest": "jest",
"test:watch": "yarn test -- --watch",
"build": "yarn build:dts && yarn workspaces run build",
"build:dts": "yarn workspace @vectorworks/draft-js-plugins run build && yarn workspace @draft-js-plugins/utils run build && yarn workspace @draft-js-plugins/buttons run build",
"prerelease": "yarn build",
"release": "changeset publish",
"postinstall": "husky install"
},
"workspaces": [
"packages/*"
]
}