-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2 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
{
"name": "@solely/simple-fm",
"version": "1.7.2",
"license": "Zlib",
"author": "Chloe Arciniega <solely@riseup.net> (https://arciniega.one)",
"description": "A simple, asynchronous Last.fm wrapper in TypeScript.",
"type": "module",
"main": "./dist/index.js",
"files": [
"./dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsconfig-replace-paths -p tsconfig.build.json -s src/",
"change": "pnpm changeset",
"ci:publish": "pnpm publish -r",
"ci:version": "pnpm changeset version",
"dev": "tsc --watch",
"lint": "pnpm eslint .",
"package": "tar -xvf solely-simple-fm-*.tgz && pnpm rimraf ./solely-simple-fm-*.tgz",
"prepublish": "rimraf ./dist && pnpm build",
"preview": "pnpm pack && pnpm package",
"test": "vitest"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"homepage": "https://github.com/solelychloe/simple-fm#README",
"repository": {
"type": "git",
"url": "https://github.com/solelychloe/simple-fm.git"
},
"keywords": [
"lastfm",
"last.fm",
"last-fm",
"lastfm-api",
"last.fm-api",
"last-fm-api"
],
"funding": {
"type": "individual",
"url": "https://ko-fi.com/solelychloe"
},
"dependencies": {
"ofetch": "^1.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-clarity": "^1.0.6",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"tsconfig-replace-paths": "^0.0.14",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.1",
"zod": "^3.21.4"
}
}