forked from scttcper/react-adsense
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"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": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx .",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.module.json",
"demo:build": "npm run build --workspace=demo",
"demo:watch": "npm run dev --workspace=demo",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
},
"dependencies": {
"tslib": "^2.5.0"
},
"devDependencies": {
"@ctrl/eslint-config": "3.7.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/node": "20.1.4",
"@types/react": "18.2.6",
"@vitest/coverage-c8": "0.31.0",
"c8": "7.13.0",
"eslint-config-xo-react": "0.27.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"happy-dom": "9.18.3",
"react": "18.2.0",
"typescript": "5.0.4",
"vitest": "0.31.0"
},
"workspaces": [
"demo"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"release": {
"branches": [
"master"
]
}
}