-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.26 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
{
"name": "dativejs",
"version": "2.0.0-alpha.0",
"description": "A mordern Ui Javascript Framework",
"main": "index.js",
"module": "dist/dative.esm.js",
"types": "types/index.d.ts",
"unpkg": "dist/dative.min.js",
"jsdelivr": "dist/dative.min.js",
"files": [
"index.js",
"index.mjs",
"dist",
"src",
"types",
"animation",
"rollup.config.js",
"Readme.markdown"
],
"scripts": {
"build": "rollup -c"
},
"exports": {
".": {
"import": {
"node": "./index.mjs",
"default": "./dist/dative.esm.js"
},
"require": "./index.js"
},
"./package.json": "./package.json",
"./animation": {
"import": "./animation/index.mjs",
"require": "./animation/index.js"
}
},
"buildOptions": {
"name": "Dativejs",
"formats": [
"esm-bundler",
"cjs",
"iife"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dativeJs/dativejs.git"
},
"keywords": [
"Reactive",
"Reactivity",
"Framework",
"Javascript",
"Dativejs"
],
"author": "Tobithedev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dativeJs/dativejs/issues"
},
"homepage": "https://dativejs.js.org"
}