-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.55 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
{
"name": "@asl-19/react-dom-utils",
"version": "1.1.0",
"description": "Shared ReactDOM utility functions and types for ASL19 projects",
"type": "module",
"contributors": [
{
"name": "Grant Heaslip",
"email": "grant@asl19.org",
"url": "https://asl19.org/"
},
{
"name": "Min Van",
"email": "min@asl19.org",
"url": "https://asl19.org/"
}
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/ASL-19/react-dom-utils.git"
},
"engines": {
"node": ">= 22",
"npm": ">= 10"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"sideEffects": false,
"scripts": {
"api-extractor-check": "api-extractor run --verbose",
"api-extractor-update": "api-extractor run --local --verbose && api-documenter markdown --input-folder ./api-extractor --output-folder ./docs",
"build-lint-test": "npm-run-all -l -p tsc -s lint-test",
"rm-dist": "rm -rf dist/*",
"dev": "npm-run-all -l -s package-changed tsc-watch",
"dev-build-update": "npm-run-all -l -p package-changed rm-dist -s tsc api-extractor-update",
"dev-lint-test": "run-s package-changed lint-test",
"eslint-check": "eslint . --ext='js,ts,tsx'",
"eslint-fix": "eslint . --ext='js,ts,tsx' --fix",
"lint-test": "run-p -l api-extractor-check eslint-check prettier-check tsc-check",
"package-changed": "package-changed",
"prepublishOnly": "run-s rm-dist build-lint-test",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"npm-check-updates": "npm-check-updates",
"tsc": "tsc --project tsconfig-dist.json",
"tsc-watch": "tsc --project tsconfig-dist.json --watch",
"tsc-check": "tsc --project tsconfig-dist.json --noEmit"
},
"dependencies": {
"@asl-19/js-dom-utils": "^1.0.0"
},
"devDependencies": {
"@asl-19/eslint-config": "^0.9.0",
"@microsoft/api-documenter": "^7.26.31",
"@microsoft/api-extractor": "^7.52.10",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.17.2",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"eslint": "^9.33.0",
"jest": "^30.0.5",
"npm-check-updates": "^18.0.2",
"npm-run-all2": "^8.0.4",
"package-changed": "^3.0.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
}
}