-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.82 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
63
64
{
"name": "devvit-helpers",
"version": "0.9.0",
"license": "LGPL-3.0-or-later",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"test": "npm run test:unit",
"test:unit": "vitest --run",
"lint": "eslint . --ext .ts",
"build": "tsc --project tsconfig.build.json",
"prepare": "npm run build"
},
"dependencies": {
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"lodash-es": "^4.17.23"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/parser": "^8.53.1",
"@vitest/eslint-plugin": "^1.6.6",
"eslint": "^9.39.2",
"eslint-plugin-perfectionist": "^4.15.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PitchforkAssistant/devvit-helpers.git"
},
"author": {
"name": "Pitchfork Assistant",
"email": "pitchforkassistant@gmail.com",
"url": "https://reddit.com/u/pitchforkassistant"
},
"bugs": {
"url": "https://github.com/PitchforkAssistant/devvit-helpers/issues"
},
"homepage": "https://github.com/PitchforkAssistant/devvit-helpers/",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/pitchforkassistant"
},
{
"type": "kofi",
"url": "https://ko-fi.com/pitchforkassistant"
}
],
"keywords": [
"reddit",
"devvit"
],
"peerDependencies": {
"@devvit/protos": "^0.12.7",
"@devvit/public-api": "^0.12.7",
"@devvit/shared-types": "^0.12.7"
}
}