-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@craftercms/ice",
"version": "0.0.0-PLACEHOLDER",
"description": "Crafter CMS in-context editing library",
"main": "./bundles/ice.umd.js",
"module": "./esm5/ice.js",
"es2015": "./esm2015/ice.js",
"typings": "./ice.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/craftercms/craftercms-sdk-js.git"
},
"keywords": [
"In context editing",
"content management",
"crafter cms",
"craftercms",
"crafter"
],
"author": "CrafterCMS",
"license": "GNU LGPL 3.0",
"scripts": {
"rollup": "../../node_modules/rollup/bin/rollup -c rollup.config.js",
"build:ts": "tsc -p tsconfig.build.json",
"clean:ts": "../../node_modules/rimraf/bin.js ts-out",
"build": "npm run build:ts && npm run rollup && npm run clean:ts",
"test": "mocha"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/react": "^16.0.0",
"enzyme": "^3.11.0",
"jsdom": "^25.0.0",
"mocha": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.30.1"
},
"dependencies": {
"@craftercms/models": "0.0.0-PLACEHOLDER"
},
"peerDependencies": {
"react": "^18.0.0"
}
}