-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.38 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.38 KB
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
{
"name": "atomico",
"version": "2.1.0",
"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",
"bin": {
"atomico": "cli/index.js"
},
"workspaces": [
"./developer-experience/**/*",
"."
],
"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"
},
"./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/errors": {
"types": "./types/errors.js"
}
},
"typesVersions": {
"*": {
"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"
]
}
},
"scripts": {
"test": "vitest --coverage --browser",
"test:cv": "vitest run --coverage --browser",
"client:start": "vite",
"test:ts:core": "tsc --project types/tsconfig.json",
"test:ts:dx": "npm run test -w @test/types",
"test:ts": "npm run test:ts:core && npm run test:ts:dx",
"prepublishOnly": "npm run test:ts && npm run test:cv"
},
"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": {
"@vitest/browser-playwright": "^4.0.9",
"@vitest/coverage-v8": "^4.0.9",
"playwright": "^1.56.1",
"prettier": "^3.8.3",
"typescript": "^5.3.3",
"vite": "^7.2.2",
"vitest": "^4.0.9"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false,
"endOfLine": "lf",
"trailingComma": "none"
}
}