-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.71 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
76
77
78
79
80
81
82
83
84
{
"name": "@riadh-adrani/ruvy",
"description": "Ruvy is a lightweight front-end framework inspired by the principles of React, designed specifically for learning purposes. It incorporates familiar concepts such as JSX, function components, and hooks, providing a simplified and synchronous approach to building web applications.",
"repository": {
"type": "git",
"url": "https://github.com/RiadhAdrani/ruvy"
},
"version": "0.5.9",
"type": "module",
"types": "./build/index.d.ts",
"exports": "./build/index.js",
"main": "./build/index.js",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"files": [
"build/**/*"
],
"keywords": [
"ruvy",
"riadh",
"adrani",
"front-end",
"ui",
"framework",
"javascript",
"typescript"
],
"scripts": {
"dev": "vite --config vite.dev.config.ts",
"playground": "vite --config vite.playground.config.ts",
"build:docs": "vite --config vite.dev.config.ts build",
"serve:docs": "vite --config vite.dev.config.ts serve",
"build:copy-global": "cp lib/global.d.ts build/global.d.ts",
"build:js": "tsc --project tsconfig.build.json",
"build:dts": "tsc --project tsconfig.build.dts.json",
"build": "rm -rf build && yarn build:js && yarn build:dts && yarn build:copy-global",
"build:vite": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:once": "vitest run",
"lint:check": "npx eslint . --ext .ts",
"format:check": "npx prettier --check ./",
"types:check": "tsc --project tsconfig.build.json --noEmit",
"lint": "npx eslint . --fix --ext .ts",
"format": "npx prettier --write --check ./",
"publish:manual": "yarn build && yarn publish",
"setup:husky": "yarn global add husky && husky install"
},
"devDependencies": {
"@types/dompurify": "^3.0.2",
"@types/marked": "^5.0.0",
"@types/node": "^18.11.9",
"@types/prismjs": "^1.26.0",
"@types/toposort": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitest/coverage-v8": "^1.1.0",
"dompurify": "^3.0.3",
"eslint": "^8.41.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-vitest": "^0.3.20",
"jsdom": "^23.0.1",
"marked": "^5.0.5",
"marked-gfm-heading-id": "^3.0.4",
"marked-mangle": "^1.0.1",
"prettier": "^2.8.8",
"prismjs": "^1.29.0",
"sass": "^1.62.1",
"scss": "^0.2.4",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"unocss": "^0.53.0",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
},
"dependencies": {
"@riadh-adrani/dom-router": "^0.0.7",
"@riadh-adrani/domer": "^0.0.5",
"csstype": "^3.1.1"
}
}