-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.12 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
{
"name": "@dolanske/curry",
"type": "module",
"version": "1.1.1",
"description": "Fully typed, simple and powerful DOM manipulation library inspired by jQuery and umbrella.",
"author": "dolanske",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dolanske/curry.ts.git"
},
"keywords": [
"javascript",
"typescript",
"dom-manipulation",
"jQuery",
"dom",
"jquery-clone"
],
"exports": {
".": {
"import": "./dist/curry.mjs"
}
},
"main": "./dist/curry.mjs",
"module": "./dist/curry.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"csstype": "^3.1.3",
"vitest": "^2.1.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"eslint": "^9.14.0",
"jsdom": "^25.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0"
}
}