-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "@diyfr/quickdom",
"version": "0.9.5",
"description": "A lightweight library for creating and manipulating DOM elements in typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"scripts": {
"build": "tsc",
"test": "ts-node --files ./node_modules/jest/bin/jest",
"format": "prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diyfr/quickdom.git"
},
"keywords": [
"dom",
"quickdom",
"vanilla",
"typescript",
"library",
"lightweight"
],
"author": "diyfr",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/diyfr/quickdom/issues"
},
"homepage": "https://github.com/diyfr/quickdom#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"directories": {
"test": "tests"
}
}