-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 930 Bytes
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
{
"name": "@3c1u/classes",
"version": "2.0.0",
"description": "Simple classname utility for whitespace sanitizing and conditional rendering.",
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/3c1u/classes.git",
"author": "Hikaru Terazono (3c1u) <3c1u@tohkani.com>",
"license": "MIT",
"private": false,
"packageManager": "pnpm@8.8.0",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"prepack": "pnpm build"
},
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
},
"directories": {
"dist": "dist"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js.map",
"dist/index.js",
"LICENSE"
],
"devDependencies": {
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}