-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 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
{
"name": "tailcomp",
"version": "1.1.0",
"description": "An OpenSource library designed to aid development with TailwindCSS by utilising a composed structure.",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "nodemon --watch \"src/**/*.*\" --exec \"yarn build\"",
"build": "yarn build:esm && yarn build:cjs && yarn build:cjs-package",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"qa": "npx prettier --write .",
"prepare": "husky",
"semantic-release": "semantic-release",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"author": "Keeghan McGarry",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.20",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.3",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"semantic-release": "^24.2.9",
"ts-jest": "^29.4.4",
"typescript": "^5.3.3"
},
"dependencies": {
"acorn": "^8.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MagicAceDev/tailcomp.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}