-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"name": "core",
"version": "0.3.1-alpha",
"description": "Constants and utilities to work with JavaScript standard global objects and primitives.",
"main": "index.js",
"scripts": {
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"tsc:compile": "tsc",
"tsc:config": "tsc --showConfig",
"vitest": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graycraft/core.git"
},
"keywords": [
"constants",
"core",
"javascript",
"js",
"object",
"primitive",
"utilities"
],
"author": "Defined Prototype <graycraft@pm.me> (https://graycraft.me/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/graycraft/core/issues"
},
"homepage": "https://github.com/graycraft/core",
"engines": {
"node": "20.19.5",
"npm": "10.8.2"
},
"type": "module",
"imports": {
"#src/*": "./source/*"
},
"devDependencies": {
"prettier": "3.6.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}