dc-editor 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2166 -0
- package/dist/index.js +970 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dc-editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": " ",
|
|
5
|
+
"author": " ",
|
|
6
|
+
"homepage": "",
|
|
7
|
+
"license": "ISC",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "dist/index.cjs",
|
|
10
|
+
"module": "dist/index.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
"import": "./dist/index.js",
|
|
14
|
+
"require": "./dist/index.cjs",
|
|
15
|
+
"types": "./dist/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"registry": "https://registry.npmjs.org/"
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"test1": "dts-bundle-generator -o docs/expose.d.ts src/expose.d.ts --export-referenced-types",
|
|
26
|
+
"watch": "export NODE_ENV=dev&&set NODE_ENV=dev&& rollup -wc --bundleConfigAsCjs",
|
|
27
|
+
"dev": "yarn run clean-build && yarn run build",
|
|
28
|
+
"build": "yarn run clean-build && rollup -c",
|
|
29
|
+
"fo-editor": "yarn run dev",
|
|
30
|
+
"doc": "npx typedoc",
|
|
31
|
+
"publish1": "yarn run build && npm publish",
|
|
32
|
+
"clean-build": "rimraf dist",
|
|
33
|
+
"test": "node ./__tests__/fo-npm.test.js"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"lodash-es": "^4.17.21"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@rollup/plugin-commonjs": "^24.1.0",
|
|
40
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
41
|
+
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
42
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
43
|
+
"@rollup/plugin-terser": "^0.4.1",
|
|
44
|
+
"@types/debug": "^4.1.7",
|
|
45
|
+
"eslint": "^8.38.0",
|
|
46
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
47
|
+
"path": "^0.12.7",
|
|
48
|
+
"prettier": "^2.8.7",
|
|
49
|
+
"rimraf": "^5.0.0",
|
|
50
|
+
"rollup-plugin-dts": "^5.3.0",
|
|
51
|
+
"rollup-plugin-node-externals": "^5.1.2",
|
|
52
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
53
|
+
"typedoc": "^0.25.6",
|
|
54
|
+
"typedoc-plugin-missing-exports": "^2.1.0",
|
|
55
|
+
"url": "^0.11.0"
|
|
56
|
+
},
|
|
57
|
+
"gitHead": "8c16114730c9f211b533ba8e10907978ab58f4af"
|
|
58
|
+
}
|