41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
---
 | 
						|
fileName: package.json
 | 
						|
---
 | 
						|
{
 | 
						|
  "name": "{{module.npmPackagename}}",
 | 
						|
  "version": "1.0.0",
 | 
						|
  "description": "{{module.description}}",
 | 
						|
  "main": "dist_ts/index.js",
 | 
						|
  "typings": "dist_ts/index.d.ts",
 | 
						|
  "type": "module",
 | 
						|
  "scripts": {
 | 
						|
    "test": "npm run build",
 | 
						|
    "build": "tsbuild --web --allowimplicitany && tsbundle website --production",
 | 
						|
    "watch": "tswatch website",
 | 
						|
    "start": "(node cli.js)",
 | 
						|
    "startTs": "(node cli.ts.js)"
 | 
						|
  },
 | 
						|
  "author": "{{author.name}}",
 | 
						|
  "license": "{{module.license}}",
 | 
						|
  "dependencies": {
 | 
						|
    "@api.global/typedserver": "^3.0.51",
 | 
						|
    "@consentsoftware_private/catalog": "^1.0.73",
 | 
						|
    "@design.estate/dees-domtools": "^2.0.23",
 | 
						|
    "@design.estate/dees-element": "^2.0.15",
 | 
						|
    "@push.rocks/qenv": "^6.0.5",
 | 
						|
    "@push.rocks/smartlog": "^3.0.7",
 | 
						|
    "@push.rocks/smartpath": "^5.0.5",
 | 
						|
    "@push.rocks/smartstate": "^2.0.0",
 | 
						|
    "@push.rocks/websetup": "^3.0.15"
 | 
						|
  },
 | 
						|
  "devDependencies": {
 | 
						|
    "@git.zone/tsbuild": "^2.1.17",
 | 
						|
    "@git.zone/tsbundle": "^2.0.3",
 | 
						|
    "@git.zone/tsrun": "^1.2.8",
 | 
						|
    "@git.zone/tswatch": "^2.0.1",
 | 
						|
    "@push.rocks/projectinfo": "^5.0.1",
 | 
						|
    "@types/node": "^18.11.15"
 | 
						|
  },
 | 
						|
  "private": true
 | 
						|
}
 |