-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.18 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
{
"//": [
"Copyright © 2022, 2023, Oracle and/or its affiliates.",
"Licensed under the Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/"
],
"name": "@ofs-users/plugin",
"type": "module",
"version": "1.3.0",
"description": "Oracle Field Service plugin base code",
"main": "dist/ofs-plugin.es.js",
"module": "dist/ofs-plugin.es.js",
"types": "dist/main.d.ts",
"repository": {
"url": "https://github.com/oracle-samples/ofs-plugin-core.git"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "jest",
"prepare": "rollup --config rollup.config.mjs"
},
"keywords": [
"ofs",
"ofsc",
"plugin"
],
"author": "[email protected]",
"devDependencies": {
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"buffer": "^6.0.3",
"css-loader": "^6.7.3",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"license": "UPL-1.0",
"dependencies": {
"@ofs-users/proxy": "^1.9.0"
}
}