-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "@dflex/store",
"version": "3.10.6",
"description": "DOM store allows you to traverse through the DOM tree with element-id",
"author": "Jalal Maskoun",
"main": "./dist/dflex-store.js",
"module": "./dist/dflex-store.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"development": {
"import": "./dist/dev.mjs",
"require": "./dist/dev.js"
},
"require": "./dist/dflex-store.js",
"import": "./dist/dflex-store.mjs",
"types": "./types/index.d.ts"
},
"./dist/*": "./dist/*"
},
"scripts": {
"clean": "rimraf ./dist ./types tsconfig.tsbuildinfo",
"emit": "tsc --emitDeclarationOnly"
},
"homepage": "https://github.com/dflex-js/dflex/tree/main/packages/dflex-store",
"repository": "https://github.com/dflex-js/dflex",
"license": "MIT",
"files": [
"dist",
"types",
"LICENSE"
],
"devDependencies": {
"@dflex/core-instance": "workspace:^",
"@dflex/dom-gen": "workspace:^",
"@dflex/utils": "workspace:^"
},
"keywords": [
"drag-drop",
"dnd",
"sortable",
"reorder",
"drag",
"drop",
"DOM",
"front-end",
"@dflex",
"@dflex/dom-gen",
"@dflex/store",
"@dflex/core-instance",
"@dflex/draggable",
"@dflex/dnd"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}