-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
78 lines (78 loc) · 2.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
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
{
"name": "@sensenet/repository-events",
"version": "2.1.3",
"description": "Client side repository event observables for sensenet",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"typings": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"fix:prettier": "prettier \"{,!(dist|temp|bundle)/**/}*.{ts,tsx}\" --write",
"dev": "npm-run-all -p \"build:types -w\" \"build:esm -w\"",
"build:release": "npm-run-all -p build:esm build:cjs build:bundles",
"build:esm": "cross-env BABEL_ENV=esm babel src --extensions '.ts' --out-dir 'dist/esm' --source-maps",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'dist/cjs' --source-maps",
"build:bundles": "cross-env BABEL_ENV=bundle rollup -c",
"build:types": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/SenseNet/sn-client.git"
},
"keywords": [
"sensenet",
"cms",
"csp",
"javascript",
"REST",
"ajax",
"API"
],
"publishConfig": {
"access": "public"
},
"author": "Sense/Net <snteam@sensenet.com> (http://sensenet.com/)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/SenseNet/sn-client/issues"
},
"homepage": "https://sensenet.com",
"dependencies": {
"@babel/runtime": "^7.18.9",
"@sensenet/client-core": "^4.1.0",
"@sensenet/client-utils": "^2.3.0",
"@sensenet/default-content-types": "^5.1.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^26.0.24",
"babel-plugin-add-import-extension": "1.6.0",
"cross-env": "^7.0.3",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.77.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.4",
"typescript": "~4.7.4"
},
"engines": {
"node": ">=10.0.0"
}
}