-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@build-in-blocks/dev.resources",
"version": "1.0.1",
"description": "Shared @build-in-blocks framework Typescript code development library.",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"blocks:ts:build": "npm-run-all --sequential blocks:ts:clean blocks:ts:npx",
"blocks:ts:npx": "npx tsc",
"blocks:ts:clean": "del-cli build index.js index.d.ts",
"eslint:lint": "eslint .",
"prettier:format": "prettier --write \"**/*.{mjs,js,ts,css,html}\"",
"prepare": "husky"
},
"devDependencies": {
"@build-in-blocks/dev.setup": "^1.0.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"del-cli": "^7.0.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
},
"homepage": "https://github.com/build-in-blocks/dev.resources#readme",
"bugs": {
"url": "https://github.com/build-in-blocks/product-issue-reports/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/build-in-blocks/dev.resources.git"
},
"license": "AGPL-3.0",
"author": "Mary Obiagba",
"contributors": [
"Find list of contributors in project README: https://github.com/build-in-blocks/dev.resources?tab=readme-ov-file#contributors"
],
"keywords": [
"@build-in-blocks",
"@build-in-blocks/dev.resources",
"dev.resources",
"build-in-blocks",
"blocks",
"framework",
"library",
"package",
"typescript",
"javascript",
"node",
"web",
"shared",
"core",
"local development",
"local",
"development",
"dev",
"resources"
],
"files": [
"build/",
"README.md"
]
}