-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "@craftsys/text-message-formatter",
"version": "1.6.1",
"description": "Text Message Formatter for WhatsApp",
"private": true,
"bugs": {
"url": "https://github.com/craftsys/text-message-formatter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/craftsys/text-message-formatter.git"
},
"engines": {
"node": ">=18.0",
"npm": ">=8"
},
"scripts": {
"clean": "rimraf dist",
"dev:eleventy": "eleventy --serve",
"dev:postcss": "postcss src/assets/main.css -o dist/assets/main.css --watch",
"dev": "npm-run-all clean --parallel dev:* --print-label",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:postcss": "NODE_ENV=production postcss src/assets/main.css -o dist/assets/main.css",
"build": "run-s clean build:* --print-label"
},
"keywords": [],
"author": "Sudhir Mitharwal",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"rimraf": "^5.0.0",
"tailwindcss": "^3.3.2"
},
"assetsPath": "public",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} :tada: :rocket:\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"prettier": "^2.8.8"
}
}