-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "carbon-neos-range-editor",
"description": "Range editor for Neos CMS",
"license": "GPL-3.0",
"author": "Jon Uhlmann",
"type": "module",
"main": "Resources/Private/RangeEditor/RangeEditor.jsx",
"module": "Resources/Private/RangeEditor/RangeEditor.jsx",
"exports": {
".": {
"require": null,
"import": "./Resources/Private/RangeEditor/RangeEditor.jsx"
}
},
"files": [
"Resources/Private/RangeEditor",
"!Resources/Private/RangeEditor/manifest.js"
],
"repository": {
"type": "git",
"url": "git://github.com/CarbonPackages/Carbon.RangeEditor.git"
},
"scripts": {
"build": "NODE_OPTIONS=--disable-warning=ExperimentalWarning node build.mjs --production",
"watch": "NODE_OPTIONS=--disable-warning=ExperimentalWarning node build.mjs --watch",
"dev": "NODE_OPTIONS=--disable-warning=ExperimentalWarning node build.mjs --dev",
"pipeline": "pnpm install --silent;pnpm build"
},
"devDependencies": {
"@neos-project/neos-ui-extensibility": "~8.3.11",
"@stylexjs/esbuild-plugin": "^0.10.1",
"esbuild": "^0.25.0",
"prettier": "^3.5.1"
},
"dependencies": {
"@stylexjs/stylex": "^0.10.1",
"carbon-neos-loadinganimation": "^1.1.1",
"ts-deepmerge": "^7.0.2",
"use-debounce": "^10.0.4"
},
"peerDependencies": {
"@neos-project/neos-ui-extensibility": "^8.3.0 || ^9.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}