-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.05 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.05 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
{
"name": "datocms-react-ui",
"version": "2.1.0-alpha.1",
"description": "React components to use inside DatoCMS plugins",
"keywords": [
"datocms",
"plugin",
"sdk"
],
"author": "Stefano Verna <s.verna@datocms.com>",
"homepage": "https://github.com/datocms/plugins-sdk/tree/master/packages/react-ui#readme",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"sideEffects": false,
"directories": {
"lib": "dist",
"test": "__tests__"
},
"files": [
"src",
"dist",
"styles.css",
"types.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datocms/plugins-sdk.git"
},
"scripts": {
"build": "npm run generate-cssmodules && tsc && tsc --project ./tsconfig.esnext.json && npm run generate-typedoc && npm run generate-global-styles",
"generate-cssmodules": "NODE_ENV=prebuild postcss 'src/**/styles.module.css' --base src --dir tmp",
"generate-global-styles": "cp src/*.css tmp && NODE_ENV=production postcss tmp/global.css --output styles.css && rm -rf tmp",
"generate-typedoc": "typedoc src/index.ts --json types.json",
"prebuild": "rimraf dist",
"install-in-place": "npm run build && rm -rf $INSTALL_PATH/node_modules/datocms-react-ui/dist && cp -rf dist styles.css types.json $INSTALL_PATH/node_modules/datocms-react-ui"
},
"bugs": {
"url": "https://github.com/datocms/plugins-sdk/issues"
},
"dependencies": {
"@floating-ui/react": "^0.27.16",
"classnames": "^2.3.1",
"datocms-plugin-sdk": "^2.1.0-alpha.1",
"react-intersection-observer": "^8.31.0",
"react-select": "^5.2.1",
"scroll-into-view-if-needed": "^2.2.20"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"cssnano": "^5.0.11",
"postcss-calc": "^8.0.0",
"postcss-cli": "^9.0.2",
"postcss-import": "^14.0.2",
"postcss-modules": "^4.2.2",
"postcss-nested": "^5.0.6",
"typedoc": "^0.26.7"
},
"gitHead": "a523642c7188862c8431027e51ab479945dde5dd"
}