-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.47 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
{
"name": "@arnavk-09/flawed",
"version": "1.0.3",
"description": "💩 Timepass Useless JS/TS & Html Framework",
"private": false,
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --module CommonJs --outDir build/cjs && npm run postbuild:cjs",
"postbuild:cjs": "node ./scripts/postbuild.mjs --path=build",
"build:esm": "tsc --outDir build/esm",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnavK-09/flawed.git"
},
"keywords": [
"Web Framework",
"Flawed",
"Poop",
"Timepass",
"HTML"
],
"author": "ArnavK-09",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArnavK-09/flawed/issues"
},
"homepage": "https://github.com/ArnavK-09/flawed#readme",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"files": [
"build",
"LICENSE",
"README.md",
"package.json",
"scripts"
],
"devDependencies": {
"@types/express": "^4.17.14",
"@types/gradient-string": "^1.1.2",
"ts-node": "^10.9.1"
},
"dependencies": {
"tslib": "^2.4.1",
"express": "^4.18.2",
"gradient-string": "^2.0.2",
"html-prettify": "^1.0.7"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}