-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.74 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
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
83
84
{
"name": "extend-to-be-announced",
"version": "2.0.0",
"author": "Ari Perkkio <[email protected]>",
"description": "Utility for asserting ARIA Live Regions",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./jest": {
"types": "./dist/jest/index.d.ts",
"require": "./dist/jest/index.js",
"import": "./dist/jest/index.mjs"
},
"./jest/register": {
"types": "./dist/jest/register.d.ts",
"require": "./dist/jest/register.js",
"import": "./dist/jest/register.mjs"
},
"./vitest": {
"types": "./dist/vitest/index.d.ts",
"require": "./dist/vitest/index.js",
"import": "./dist/vitest/index.mjs"
},
"./vitest/register": {
"types": "./dist/vitest/register.d.ts",
"require": "./dist/vitest/register.js",
"import": "./dist/vitest/register.mjs"
}
},
"files": [
"dist",
"jest.@(d.ts|js)"
],
"license": "MIT",
"scripts": {
"changelog": "npx conventional-changelog-cli -i CHANGELOG.md -p conventionalcommits -s -r 0",
"prebuild": "rm -rf ./dist",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint . --max-warnings 0",
"validate": "pnpm build && pnpm lint && pnpm test"
},
"repository": {
"type": "git",
"url": "https://github.com/AriPerkkio/extend-to-be-announced"
},
"homepage": "https://github.com/AriPerkkio/extend-to-be-announced",
"bugs": "https://github.com/AriPerkkio/extend-to-be-announced",
"dependencies": {
"aria-live-capture": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"@vitest/expect": "^2.1.4",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rollup": "^4.25.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-local-import": "^1.2.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]",
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}