-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "nodewp.com",
"repository": {
"url": "https://github.com/alexandermontillarivera/nodewp.com"
},
"version": "1.0.3",
"description": "The WordPress.com Node.js free API access library",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/types/index.d.ts",
"keywords": [
"Wordpress.com",
"API Wordpress",
"Wordpress",
"API Wordpress for node",
"API Wordpress for navigator"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.esm.json & tsc --module commonjs --project tsconfig.cjs.json",
"test": "vitest"
},
"author": "Alexander Montilla Rivera",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2"
},
"exports": {
"default": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"devDependencies": {
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-standard": "^12.0.1",
"typescript": "^4.8.4",
"vitest": "^0.24.0"
}
}