-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "@ctrl/react-adsense",
"version": "0.0.0-placeholder",
"description": "Typescript adsense module",
"author": "Scott Cooper <scttcper@gmail.com>",
"license": "MIT",
"repository": "scttcper/react-adsense",
"main": "dist/index.js",
"module": "dist/module/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"keywords": [
"ads",
"google",
"typescript"
],
"scripts": {
"lint": "biome check . && eslint .",
"lint:fix": "biome check --apply . && eslint --fix .",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.module.json",
"demo:build": "pnpm --filter demo-app build",
"demo:watch": "pnpm --filter demo-app dev",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ctrl/eslint-config-biome": "4.2.16",
"@eslint/compat": "1.2.4 ",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/node": "22.10.1",
"@types/react": "19.0.0",
"@vitest/coverage-v8": "2.1.8",
"eslint-config-xo-react": "0.27.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"happy-dom": "15.11.7",
"react": "19.0.0",
"typescript": "5.7.2",
"vitest": "2.1.8",
"eslint": "9.16.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"release": {
"branches": [
"master"
]
}
}