-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
145 lines (145 loc) · 3.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "atomico",
"version": "1.79.2",
"description": "Atomico is a small library for the creation of interfaces based on web-components, only using functions and hooks.",
"type": "module",
"main": "./core.js",
"module": "./core.js",
"types": "./types/core.d.ts",
"exports": {
".": {
"types": "./types/core.d.ts",
"default": "./core.js"
},
"./test-hooks": {
"types": "./types/test-hooks.d.ts",
"default": "./test-hooks.js"
},
"./test-dom": {
"types": "./types/test-dom.d.ts",
"default": "./test-dom.js"
},
"./jsx-runtime": {
"types": "./types/jsx-runtime.d.ts",
"default": "./jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./types/jsx-runtime.d.ts",
"default": "./jsx-runtime.js"
},
"./utils": {
"types": "./types/utils.d.ts",
"default": "./utils.js"
},
"./html": {
"types": "./types/html.d.ts",
"default": "./html.js"
},
"./ssr": {
"types": "./types/ssr.d.ts",
"default": "./ssr.js"
},
"./ssr/load": {
"types": "./types/ssr-load.d.ts",
"default": "./ssr/load.js"
},
"./types/dom": {
"types": "./types/dom.js"
},
"./types/schema": {
"types": "./types/schema.js"
},
"./types/hooks": {
"types": "./types/hooks.js"
},
"./types/vnode": {
"types": "./types/vnode.js"
},
"./types/component": {
"types": "./types/component.js"
},
"./types/context": {
"types": "./types/context.js"
},
"./types/css": {
"types": "./types/css.js"
},
"./types/html": {
"types": "./types/html.js"
},
"./types/errors": {
"types": "./types/errors.js"
}
},
"typesVersions": {
"*": {
"html": [
"types/html.d.ts"
],
"jsx-runtime": [
"types/jsx-runtime.d.ts"
],
"jsx-dev-runtime": [
"types/jsx-runtime.d.ts"
],
"test-hooks": [
"types/test-hooks.d.ts"
],
"test-dom": [
"types/test-dom.d.ts"
],
"utils": [
"types/utils.d.ts"
],
"ssr": [
"types/ssr.d.ts"
],
"ssr/load": [
"types/ssr-load.d.ts"
]
}
},
"scripts": {
"test": "npm run build:html && npm run ssr && web-test-runner",
"test:ts": "tsc --project types/tsconfig.json",
"ssr": "node ssr/tests/ssr.js",
"test:w": "web-test-runner --watch",
"build:html": "rollup -c",
"prepare": "npm run test:ts && npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/atomicojs/atomico.git"
},
"keywords": [
"jsx",
"web-components",
"hooks",
"custom-elements",
"webcomponent",
"react"
],
"author": "UpperCod",
"license": "MIT",
"bugs": {
"url": "https://github.com/atomicojs/atomico/issues"
},
"homepage": "https://github.com/atomicojs/atomico#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.0.0",
"@web/test-runner": "^0.18.1",
"htm": "^3.1.1",
"prettier": "^3.1.0",
"rollup": "2.72.0",
"typescript": "^5.3.3"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false,
"endOfLine": "lf",
"trailingComma": "none"
}
}