-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "ajo",
"version": "0.1.21",
"description": "ajo is a JavaScript view library for building user interfaces",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./types.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./types.ts"
},
"./html": {
"import": "./dist/html.js",
"require": "./dist/html.cjs",
"types": "./types.ts"
}
},
"files": [
"dist",
"types.ts"
],
"scripts": {
"test": "vitest --run",
"build": "vite build",
"bump": "pnpm version patch && git push && git push --tags",
"release": "pnpm test && pnpm build && pnpm bump && pnpm publish"
},
"devDependencies": {
"@types/node": "^22.2.0",
"jsdom": "24.1.1",
"vite": "5.4.0",
"vitest": "2.0.5"
},
"keywords": [
"ui",
"frontend",
"web",
"dom",
"jsx"
],
"repository": "cristianfalcone/ajo",
"author": "Cristian Falcone",
"license": "ISC",
"bugs": "https://github.com/cristianfalcone/ajo/issues",
"homepage": "https://github.com/cristianfalcone/ajo#readme"
}