-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "@sandboxed/unitjs",
"version": "2.2.8",
"description": "UnitJS follows the `Revealing Module Pattern`. Easy to use DOM manipulation light-weight library",
"main": "lib/cjs/unit.cjs",
"module": "./lib/esm/unit.js",
"exports": {
"import": "./lib/esm/unit.js",
"require": "./lib/cjs/unit.cjs"
},
"types": "lib/unit.d.ts",
"files": [
"lib",
"docs"
],
"scripts": {
"test": "jest",
"lint": "tsc --version && tsc --noEmit && eslint './src/**/*.{js,ts,tsx}'",
"verify:build": "npm run lint && npm run test",
"build": "npm run verify:build && tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmcruz/UnitJS.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vmcruz/UnitJS/issues"
},
"homepage": "https://github.com/vmcruz/UnitJS#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.2.2",
"@swc/core": "^1.13.2",
"@types/jest": "^30.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"tsup": "8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"engines": {
"node": ">=20.19.0"
},
"engineStrict": true,
"type": "module",
"overrides": {
"tsup": {
"esbuild": "0.28.1"
}
}
}