-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "react-adobe-fonts",
"version": "0.1.0",
"description": "A React library to use Adobe Fonts",
"keywords": [
"react",
"react-hooks",
"adobe-fonts",
"typekit"
],
"homepage": "https://github.com/p-chan/react-adobe-fonts#readme",
"bugs": {
"url": "https://github.com/p-chan/react-adobe-fonts/issues"
},
"license": "MIT",
"author": "P-Chan",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/p-chan/react-adobe-fonts.git"
},
"scripts": {
"build": "tsup",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"lint": "prettier --check .",
"fix": "prettier --write .",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"version:major": "standard-version -r major",
"version:minor": "standard-version -r minor",
"version:patch": "standard-version -r patch"
},
"devDependencies": {
"@stardust-configs/prettier-config": "0.3.0",
"@stardust-configs/tsconfig": "0.4.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"standard-version": "9.5.0",
"tsup": "8.3.5",
"typescript": "5.7.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write ./CHANGELOG.md"
}
}
}