-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.87 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
{
"name": "nago-react",
"version": "0.1.4",
"description": "A lightweight React-like framework built from scratch for learning purposes, focusing on core concepts and implementation details.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.mjs",
"require": "./dist/jsx-runtime.cjs"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-dev-runtime.d.ts",
"import": "./dist/jsx-dev-runtime.mjs",
"require": "./dist/jsx-dev-runtime.cjs"
}
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsup",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --watch --config vitest.config.ts",
"test:ui": "vitest --ui --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts",
"biome": "biome check src",
"biome:fix": "biome check --apply src",
"biome:format": "biome format src --write",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nago730/fe-my-react.git"
},
"keywords": [
"react",
"framework",
"frontend",
"ui",
"learning",
"education",
"from-scratch",
"custom-react",
"codesquad",
"nago",
"milo",
"wanja"
],
"author": "Nago730 (github)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nago730/fe-my-react/issues"
},
"homepage": "https://github.com/Nago730/fe-my-react#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "24.0.0",
"@vitest/coverage-v8": "^3.2.2",
"jsdom": "^26.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.2"
}
}